Update minimum cmake version to 3.10 (#274)
authordundargoc <33953936+dundargoc@users.noreply.github.com>
Sat, 28 Dec 2024 18:28:37 +0000 (19:28 +0100)
committerGitHub <noreply@github.com>
Sat, 28 Dec 2024 18:28:37 +0000 (13:28 -0500)
This is to prevent the following warning:

CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
  Compatibility with CMake < 3.10 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.

CMakeLists.txt

index 0d66523f61d4a716ea40b5b7ed331865059b6511..d0bb30503b95641986761af3c0558c7b2dccd448 100644 (file)
@@ -1,4 +1,4 @@
-cmake_minimum_required (VERSION 3.5)
+cmake_minimum_required (VERSION 3.10)
 
 include (utils.cmake)